home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / VCLZip / kpdemosd.exe / ZipUtil / Comment.Pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-01-22  |  797 b   |  46 lines

  1. unit Comment;
  2.  
  3. { $Log:  d:\proj\unzip\archives\COMMENT.UFV 
  4. {
  5. {   Rev 1.2    Wed 21 Jan 1998   21:30:38  Kevin Boylan    Version: 2.00 Beta 2
  6. { Begin logging change history
  7. }
  8.  
  9. interface
  10.  
  11. uses
  12. {$IFDEF WIN32}
  13.     Windows,
  14. {$ELSE}
  15.   WinTypes, WinProcs,
  16. {$ENDIF}
  17.     SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  18.   Buttons, ExtCtrls;
  19.  
  20. type
  21.   TCommentEditor = class(TForm)
  22.     OKBtn: TButton;
  23.     CancelBtn: TButton;
  24.     Bevel1: TBevel;
  25.     CommentMemo: TMemo;
  26.     procedure FormActivate(Sender: TObject);
  27.   private
  28.     { Private declarations }
  29.   public
  30.     { Public declarations }
  31.   end;
  32.  
  33. var
  34.   CommentEditor: TCommentEditor;
  35.  
  36. implementation
  37.  
  38. {$R *.DFM}
  39.  
  40. procedure TCommentEditor.FormActivate(Sender: TObject);
  41. begin
  42.   CommentMemo.SetFocus;
  43. end;
  44.  
  45. end.
  46.